home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Resource / c / InitPath < prev    next >
Text File  |  1993-07-15  |  1KB  |  29 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Resource.InitPath.c
  12.     Author:  Copyright © 1993 Jason Williams
  13.     Version: 1.00 (15 Jul 1993)
  14.     Purpose: Resource file (files within user application directory)
  15.              management functions
  16. */
  17.  
  18.  
  19. #include <string.h>
  20. #include "DeskLib:Resource.h"
  21.  
  22.  
  23. extern void Resource_InitialisePath(char *respath)
  24. {
  25.   strncpy(resource_pathname, respath, 30);
  26.   resource_pathname[30] = '\0';               /* Ensure string is terminated */
  27.   strcat(resource_pathname, ":");
  28. }
  29.